home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / MITest1.exp < prev    next >
Encoding:
Text File  |  1996-11-19  |  608 b   |  33 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MITest1.exp
  3.  
  4.     Contains:    Test for multiple inheritance
  5.  
  6.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #include "MITest1.h"
  11.  
  12.  
  13. Library
  14. {
  15.     id = "quin:test$MITest1,1.2";
  16.     memory = client;
  17.     version = 1.0…1.2;
  18. };
  19.  
  20. Class MMixin1;
  21. Class MMixin2;
  22. Class MMixin3;
  23.  
  24. //
  25. //    ASLM does not support SCpp multiple inheritance. The code below will
  26. //    prevent the building of the shared library from dying and will also
  27. //    cause the tests that use these classes to simply give and error message.
  28. //
  29. #if !defined(__SC__) && !defined(__MRC__)
  30.     Class TMixedClass;
  31.     Class TMixedClass2;
  32. #endif
  33.